home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / ddj0897.zip / RCSC.ZIP / LIB51 / STRCMP.C < prev    next >
Text File  |  1997-01-12  |  197b  |  13 lines

  1. /*
  2. ** return <0,   0,  >0 a_ording to
  3. **       s<t, s=t, s>t
  4. */
  5. strcmp(s, t) char *s, *t; {
  6.   while(*s == *t) {
  7.     if(*s == 0) return (0);
  8.     ++s; ++t;
  9.     }
  10.   return (*s - *t);
  11.   }
  12.  
  13.